Instead of binding the checked state to the button handler function,
bind the underlying checkboxes instead to observe the actual user
choice instead of the initial value.
This fixes forcing sysupgrade or deselecting keep settings.
Reported-by: Hannu Nyman <[email protected]>
Signed-off-by: Jo-Philipp Wich <[email protected]>
var cntbtn = E('button', {
'class': 'btn cbi-button-action important',
- 'click': L.ui.createHandlerFn(this, 'handleSysupgradeConfirm', btn, keep.checked, force.checked),
+ 'click': L.ui.createHandlerFn(this, 'handleSysupgradeConfirm', btn, keep, force),
'disabled': (!is_valid || is_too_big) ? true : null
}, [ _('Continue') ]);
var opts = [];
- if (!keep)
+ if (!keep.checked)
opts.push('-n');
- if (force)
+ if (force.checked)
opts.push('--force');
opts.push('/tmp/firmware.bin');